home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / gnustuff / minix / update~4.z / update~4 / lib_stdio_vprintf.c < prev    next >
Encoding:
C/C++ Source or Header  |  1989-09-06  |  342 b   |  23 lines

  1. /*                v p r i n t f
  2.  *
  3.  * This function provides the same functionality as printf except
  4.  * that it uses varargs.h.
  5.  *
  6.  * Patchlevel 1.0
  7.  *
  8.  * Edit History:
  9.  */
  10.  
  11. #include "stdiolib.h"
  12.  
  13. /*LINTLIBRARY*/
  14.  
  15. int vprintf(fmt, args)
  16.  
  17. CONST char *fmt;                /* format */
  18. va_list    args;                /* argument list */
  19.  
  20. {
  21.   return vfprintf(stdout, fmt, args);
  22. }
  23.